strconv.floatInfo.expbits (field)
12 uses
strconv (current package)
atof.go#L373: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L385: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L399: exp = 1<<flt.expbits - 1 + flt.bias
atof.go#L405: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L407: bits |= 1 << flt.mantbits << flt.expbits
atof.go#L500: maxExp := 1<<flt.expbits + flt.bias - 2
atof.go#L554: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L556: bits |= 1 << flt.mantbits << flt.expbits
ftoa.go#L18: expbits uint
ftoa.go#L71: neg := bits>>(flt.expbits+flt.mantbits) != 0
ftoa.go#L72: exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
ftoa.go#L76: case 1<<flt.expbits - 1:
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |